@charset "UTF-8";
/*--------------------------------------------------------------
# Configuration and helpers
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# COLORS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# RESPONSIVE BREAKPOINTS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gutenber bg colors
--------------------------------------------------------------*/
.has-grey-background-color {
  background-color: #F9F9F9;
}

.has-lightblue-background-color {
  background-color: #EDF9FC;
}

.has-lightorange-background-color {
  background-color: #FFEED6;
}

/* ============ MIXINS ============= */
.aspect-ratio-bg {
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
  display: block;
}

.aspect-radio-16-9 {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.24%;
}
.aspect-radio-16-9 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============ END MIXINS ============= */
/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.unstyle-list, .footer__bottom .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unstyle-list li, .footer__bottom .menu li {
  padding: 0;
  margin: 0;
}
.unstyle-list li:before, .footer__bottom .menu li:before {
  display: none;
}

.disable-scroll {
  overflow: hidden;
}

.display-none {
  display: none;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.arrow {
  border: solid #494949;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 0.4rem;
}
.arrow--light {
  border-color: #3E3AE9;
}
.arrow.right {
  transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
}

.arrow-triangle {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
}
.arrow-triangle.right {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #A0A0A0;
}
.arrow-triangle.left {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #A0A0A0;
}
.arrow-triangle.up {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #A0A0A0;
}
.arrow-triangle.down {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #A0A0A0;
  margin-left: 3px;
}

.table-scroll {
  overflow-x: auto;
}

.bg-shape {
  display: block;
  position: relative;
  top: 3px;
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-grey {
  color: #F3F3F3;
}

.bg-polygon {
  position: relative;
}
.bg-polygon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.85;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0% 100%);
}
@media (min-width: 992px) {
  .bg-polygon:before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), 0% 100%);
  }
}
.bg-polygon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 100%;
  z-index: -2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 10px));
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 10px));
}
@media (min-width: 992px) {
  .bg-polygon:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 35px));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 35px));
  }
}
.bg-polygon--blue:before {
  background: #EDF9FC;
}
.bg-polygon--blue:after {
  background: #E4F6FB;
}
.bg-polygon--orange:before {
  background: #FFF2DF;
}
.bg-polygon--orange:after {
  background: #FFEED6;
}
.bg-polygon--grey:before {
  background: #FBFBFB;
}
.bg-polygon--grey:after {
  background: #F5F5F5;
}

.card-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Vendors
--------------------------------------------------------------*/
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers (opinionated).
   */
body {
  margin: 0;
}

/**
   * Add the correct display in IE 9-.
   */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   * 1. Add the correct display in IE.
   */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
   * Add the correct margin in IE 8.
   */
figure {
  margin: 1em 40px;
}

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
   * Remove the outline on focused links when they are also active or hovered
   * in all browsers (opinionated).
   */
a:active,
a:hover {
  outline-width: 0;
}

/**
   * 1. Remove the bottom border in Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   */
b,
strong {
  font-weight: inherit;
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font style in Android 4.3-.
   */
dfn {
  font-style: italic;
}

/**
   * Add the correct background and color in IE 9-.
   */
mark {
  background-color: #ff0;
  color: #000;
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   */
audio,
video {
  display: inline-block;
}

/**
   * Add the correct display in iOS 4-7.
   */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
   * Remove the border on images inside links in IE 10-.
   */
img {
  border-style: none;
}

/**
   * Hide the overflow in IE.
   */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Change the border, margin, and padding in all browsers (opinionated).
   */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * 1. Add the correct display in IE 9-.
   * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
   * Remove the default vertical scrollbar in IE.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10-.
   * 2. Remove the padding in IE 10-.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in IE 9-.
   * 1. Add the correct display in Edge, IE, and Firefox.
   */
details,
menu {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Scripting
     ========================================================================== */
/**
   * Add the correct display in IE 9-.
   */
canvas {
  display: inline-block;
}

/**
   * Add the correct display in IE.
   */
template {
  display: none;
}

/* Hidden
     ========================================================================== */
/**
   * Add the correct display in IE 10-.
   */
[hidden] {
  display: none;
}

/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* =WordPress Core - Sassified.
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body {
  font-family: "Lato", sans-serif;
  color: #494949;
  font-weight: 400;
}
body {
  font-size: 17px;
}
@media screen and (min-width: 320px) {
  body {
    font-size: calc(17px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 19px;
  }
}
body {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  body {
    line-height: calc(26px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  body {
    line-height: 29px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem 0;
  font-family: "Poppins", sans-serif;
  color: #363636;
  font-weight: 700;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #3E3AE9;
  font-weight: inherit;
}

p {
  margin: 0 0 1.2rem 0;
}

h1,
.h1 {
  font-size: 33px;
}
@media screen and (min-width: 320px) {
  h1,
  .h1 {
    font-size: calc(33px + 22 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h1,
  .h1 {
    font-size: 55px;
  }
}
h1,
.h1 {
  line-height: 40px;
}
@media screen and (min-width: 320px) {
  h1,
  .h1 {
    line-height: calc(40px + 29 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h1,
  .h1 {
    line-height: 69px;
  }
}

h2,
.h2,
.contact h1 {
  font-size: 30px;
}
@media screen and (min-width: 320px) {
  h2,
  .h2,
  .contact h1 {
    font-size: calc(30px + 16 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h2,
  .h2,
  .contact h1 {
    font-size: 46px;
  }
}
h2,
.h2,
.contact h1 {
  line-height: 38px;
}
@media screen and (min-width: 320px) {
  h2,
  .h2,
  .contact h1 {
    line-height: calc(38px + 20 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h2,
  .h2,
  .contact h1 {
    line-height: 58px;
  }
}

h3,
.h3,
.contact__text h2,
.contact__text h3,
.not-found h1,
.llc-banner-desc .llc-price strong {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  h3,
  .h3,
  .contact__text h2,
  .contact__text h3,
  .not-found h1,
  .llc-banner-desc .llc-price strong {
    font-size: calc(26px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h3,
  .h3,
  .contact__text h2,
  .contact__text h3,
  .not-found h1,
  .llc-banner-desc .llc-price strong {
    font-size: 32px;
  }
}
h3,
.h3,
.contact__text h2,
.contact__text h3,
.not-found h1,
.llc-banner-desc .llc-price strong {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  h3,
  .h3,
  .contact__text h2,
  .contact__text h3,
  .not-found h1,
  .llc-banner-desc .llc-price strong {
    line-height: calc(30px + 12 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h3,
  .h3,
  .contact__text h2,
  .contact__text h3,
  .not-found h1,
  .llc-banner-desc .llc-price strong {
    line-height: 42px;
  }
}

h4,
.h4,
.post-card__title,
.llc-card__title {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  h4,
  .h4,
  .post-card__title,
  .llc-card__title {
    font-size: calc(22px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h4,
  .h4,
  .post-card__title,
  .llc-card__title {
    font-size: 24px;
  }
}
h4,
.h4,
.post-card__title,
.llc-card__title {
  line-height: 28px;
}
@media screen and (min-width: 320px) {
  h4,
  .h4,
  .post-card__title,
  .llc-card__title {
    line-height: calc(28px + 8 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h4,
  .h4,
  .post-card__title,
  .llc-card__title {
    line-height: 36px;
  }
}

h5,
.h5,
.llc-banner-main__right .llc-banner-main__subtitle {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  h5,
  .h5,
  .llc-banner-main__right .llc-banner-main__subtitle {
    font-size: calc(19px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h5,
  .h5,
  .llc-banner-main__right .llc-banner-main__subtitle {
    font-size: 22px;
  }
}
h5,
.h5,
.llc-banner-main__right .llc-banner-main__subtitle {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  h5,
  .h5,
  .llc-banner-main__right .llc-banner-main__subtitle {
    line-height: calc(24px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h5,
  .h5,
  .llc-banner-main__right .llc-banner-main__subtitle {
    line-height: 30px;
  }
}

h6,
.h6 {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  h6,
  .h6 {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}
h6,
.h6 {
  line-height: 22px;
}
@media screen and (min-width: 320px) {
  h6,
  .h6 {
    line-height: calc(22px + 7 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  h6,
  .h6 {
    line-height: 29px;
  }
}

.big-title {
  font-size: 40px;
}
@media screen and (min-width: 320px) {
  .big-title {
    font-size: calc(40px + 32 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .big-title {
    font-size: 72px;
  }
}
.big-title {
  line-height: 46px;
}
@media screen and (min-width: 320px) {
  .big-title {
    line-height: calc(46px + 26 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .big-title {
    line-height: 72px;
  }
}

.small-title, .llc-price {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .small-title, .llc-price {
    font-size: calc(18px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .small-title, .llc-price {
    font-size: 20px;
  }
}
.small-title, .llc-price {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .small-title, .llc-price {
    line-height: calc(20px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .small-title, .llc-price {
    line-height: 24px;
  }
}

.big-text {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .big-text {
    font-size: calc(18px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .big-text {
    font-size: 22px;
  }
}
.big-text {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .big-text {
    line-height: calc(24px + 8 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .big-text {
    line-height: 32px;
  }
}

.small-text, .single-hero__author, .single-hero__date, .footer__menu a, .llc-banner-main__rating-small, .llc-card__description p, .pricing__list-item, .editor .wp-block-image figcaption, .wp-block-table figcaption {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .small-text, .single-hero__author, .single-hero__date, .footer__menu a, .llc-banner-main__rating-small, .llc-card__description p, .pricing__list-item, .editor .wp-block-image figcaption, .wp-block-table figcaption {
    font-size: calc(13px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .small-text, .single-hero__author, .single-hero__date, .footer__menu a, .llc-banner-main__rating-small, .llc-card__description p, .pricing__list-item, .editor .wp-block-image figcaption, .wp-block-table figcaption {
    font-size: 16px;
  }
}
.small-text, .single-hero__author, .single-hero__date, .footer__menu a, .llc-banner-main__rating-small, .llc-card__description p, .pricing__list-item, .editor .wp-block-image figcaption, .wp-block-table figcaption {
  line-height: 17px;
}
@media screen and (min-width: 320px) {
  .small-text, .single-hero__author, .single-hero__date, .footer__menu a, .llc-banner-main__rating-small, .llc-card__description p, .pricing__list-item, .editor .wp-block-image figcaption, .wp-block-table figcaption {
    line-height: calc(17px + 5 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .small-text, .single-hero__author, .single-hero__date, .footer__menu a, .llc-banner-main__rating-small, .llc-card__description p, .pricing__list-item, .editor .wp-block-image figcaption, .wp-block-table figcaption {
    line-height: 22px;
  }
}

.xsmall-text, .footer__copyright, .footer__bottom .menu a {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .xsmall-text, .footer__copyright, .footer__bottom .menu a {
    font-size: calc(12px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .xsmall-text, .footer__copyright, .footer__bottom .menu a {
    font-size: 15px;
  }
}
.xsmall-text, .footer__copyright, .footer__bottom .menu a {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .xsmall-text, .footer__copyright, .footer__bottom .menu a {
    line-height: calc(16px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .xsmall-text, .footer__copyright, .footer__bottom .menu a {
    line-height: 19px;
  }
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
   * Make all elements from the DOM inherit from the parent box-sizing
   * Since `*` has a specificity of 0, it does not override the `html` value
   * making all elements inheriting from the root box-sizing value
   * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 50%;
}
@media (min-width: 992px) {
  html {
    font-size: 55%;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 62.5%;
  }
}
html.noscroll {
  overflow: hidden;
}
@media (min-width: 992px) {
  html.noscroll {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.site-main {
  overflow-x: hidden;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1220px;
  }
}
.container-medium {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}
.container-hero {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.container-inner {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}
.container-content {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
}

ul,
ol {
  margin: 0 0 20px 0;
  padding-left: 25px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

.bullet-list {
  list-style: none;
  padding: 0;
}
.bullet-list.bullet-list--margin {
  margin: 0;
}
.bullet-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .bullet-list li {
    margin-bottom: 10px;
  }
}
.bullet-list li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 7px;
  height: 12px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .bullet-list li:before {
    top: 7px;
  }
}
.bullet-list li:last-of-type {
  margin-bottom: 0;
}
.bullet-list--green li:before {
  border-color: #34C175;
}
.bullet-list--blue li:before {
  border-color: #3E3AE9;
}
.bullet-list--cross li:before, .bullet-list--cross li:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 2px;
  height: 14px;
  background-color: #DF2929;
}
@media (min-width: 992px) {
  .bullet-list--cross li:before, .bullet-list--cross li:after {
    top: 7px;
  }
}
.bullet-list--cross li:after {
  transform: rotate(45deg);
}
.bullet-list--cross li:before {
  transform: rotate(-45deg);
  border: none;
}

embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1.8rem auto;
}

.wp-block-video {
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
@media (min-width: 992px) {
  .wp-block-video {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.wp-block-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 5px;
}

.wp-block-embed {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
.wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/**
 * Basic styles for links
 */
a {
  color: #3E3AE9;
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover, a:active {
  outline: 0;
  text-decoration: none;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  min-width: 125px;
  border-radius: 5px;
  color: white;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .btn {
    padding: 17px 22px;
  }
}
.btn__primary {
  background-color: #3E3AE9;
}
.btn__primary:hover {
  background-color: #0600FF;
}
.btn__cta {
  background-color: #DF2929;
  color: #FFF9F9;
}
.btn__cta {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .btn__cta {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .btn__cta {
    font-size: 18px;
  }
}
.btn__cta {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .btn__cta {
    line-height: calc(26px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .btn__cta {
    line-height: 28px;
  }
}
.btn__cta:hover {
  background-color: #FF0606;
}
.btn__outline {
  border: 1px solid #363636;
  color: #363636;
  background-color: white;
}
.btn__outline:hover {
  border-color: #3E3AE9;
  color: #3E3AE9;
}
.btn__outline-white {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}
.btn__outline-primary {
  border: 1px solid #3E3AE9;
  color: #3E3AE9;
  background-color: transparent;
}
.btn__link {
  color: #363636;
  padding: 2px;
  font-weight: 700;
}
.btn__link strong {
  color: #3E3AE9 !important;
}
.btn__with-arrow:hover .arrow-right {
  transform: translateX(4px);
}
.btn__with-arrow .arrow-right {
  margin-left: 5px;
  vertical-align: middle;
  transition: all 0.2s ease;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=color],
textarea,
select,
form .select2-container--default .select2-selection--single .select2-selection__rendered,
form .select2-container--default .select2-selection--multiple {
  color: #494949;
  border: 0.8px solid #DCDCDC;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  transition: 0.25s ease;
  background-color: white;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=color]:focus,
textarea:focus,
select:focus,
form .select2-container--default .select2-selection--single .select2-selection__rendered:focus,
form .select2-container--default .select2-selection--multiple:focus {
  border: 0.8px solid rgba(62, 58, 233, 0.4);
  outline: none;
}

select {
  min-height: 54px;
  padding: 9px 20px 9px 15px;
  color: #363636;
}
select:focus {
  outline: none;
  border-color: #EDF9FC;
}

textarea {
  width: 100%;
  height: 130px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #595959;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #595959;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #595959;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #595959;
}

/* Change Autocomplete styles in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #494949;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

form .select2-container--default .select2-selection--single .select2-selection__rendered,
form .select2-container--default .select2-selection--multiple,
form .select-country {
  padding: 12px 14px;
  border-radius: 5px;
  text-align: left;
  color: #363636;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #363636 !important;
}

form .select2-container {
  width: 100% !important;
}
@media (min-width: 768px) {
  form .select2-container {
    flex: 1;
  }
}

form .select-country {
  display: block;
}
@media (min-width: 768px) {
  form .select-country {
    flex: 1;
  }
}

form .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  height: auto;
}

.select2-search--dropdown {
  padding: 9px 10px !important;
}

.select2-results__option {
  padding: 10px 14px !important;
}

.select2-dropdown {
  border: 1px solid #DCDCDC !important;
  overflow: hidden;
}
.select2-dropdown:before {
  z-index: -999;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  color: #363636 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #F9F9F9 !important;
  color: #3E3AE9 !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(255, 255, 255, 0.1647058824) !important;
}

form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  transform: scale(1.2);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 40px !important;
}

.select2-results__options::-webkit-scrollbar-button {
  display: none;
}

.select2-container--open .select2-dropdown {
  margin-top: -2px;
}
body.logged-in.admin-bar .select2-container--open .select2-dropdown {
  margin-top: 30px;
}

/* the slides - gap between them */
.slick-slide {
  padding: 18px 12px;
}

/* the parent */
.slick-list {
  margin: 0 -12px;
}

.slick-track {
  display: flex !important;
  margin-left: 0;
}

.slick-slide {
  height: inherit !important;
}

.slick-arrow {
  position: absolute;
  top: 97%;
  padding: 13px;
  transition: all 0.3s ease;
  z-index: 3;
}
@media (min-width: 992px) {
  .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
  }
}
.slick-arrow:hover {
  opacity: 0.7;
}
.slick-arrow.slick-disabled {
  cursor: initial;
}
.slick-arrow.slick-disabled .arrow {
  border-color: #DFDFDF;
}
.slick-arrow.slick-disabled:hover {
  opacity: 1;
}
.slick-arrow.prev-arrow {
  left: -5px;
}
@media (min-width: 992px) {
  .slick-arrow.prev-arrow {
    left: -6rem;
  }
}
.slick-arrow.next-arrow {
  right: -5px;
}
@media (min-width: 992px) {
  .slick-arrow.next-arrow {
    right: -6rem;
  }
}
.slick-arrow .arrow {
  padding: 0.7rem;
}

.pagination {
  text-align: center;
  padding: 30px 0 20px 0;
}
@media (min-width: 992px) {
  .pagination {
    padding: 12rem 0 0 0;
  }
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination .page-numbers {
  color: #494949;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 4px;
  line-height: 1;
  margin: 0 2px;
}
.pagination .page-numbers.current {
  color: #FC9E47;
}
.pagination .page-numbers.next {
  margin-left: 10px;
}
.pagination .page-numbers.prev {
  margin-right: 10px;
}

.wp-block-table {
  margin: 20px -20px 20px -20px;
}
@media (min-width: 768px) {
  .wp-block-table {
    margin: 35px auto;
  }
}
.wp-block-table table {
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  text-align: left;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media (min-width: 768px) {
  .wp-block-table table {
    border: 1px solid #EBEBEB;
  }
}
@media (min-width: 992px) {
  .wp-block-table table {
    min-width: 100%;
  }
}
.wp-block-table thead {
  background-color: #D8F5FC;
  color: #073770;
}
.wp-block-table thead th {
  font-weight: 700;
  padding: 12px 10px 12px 25px;
  line-height: 1.4;
}
.wp-block-table tbody td {
  padding: 14px 10px 14px 25px;
  line-height: 1.4;
}
.wp-block-table tbody tr td:first-of-type {
  color: #363636;
  font-weight: 600;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: white;
}
.wp-block-table tbody tr:nth-child(even) {
  background-color: #F9F9F9;
}
.wp-block-table figcaption {
  padding: 5px 0;
}

blockquote,
.wp-block-quote {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 30px;
  position: relative;
}
@media (min-width: 992px) {
  blockquote,
  .wp-block-quote {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-right: 30px;
  }
}
blockquote:before,
.wp-block-quote:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -20px;
  width: 3px;
  background-color: #CCF7FF;
}
blockquote p,
.wp-block-quote p {
  margin: 0;
  font-weight: 500;
  position: relative;
}
blockquote p,
.wp-block-quote p {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  blockquote p,
  .wp-block-quote p {
    font-size: calc(18px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  blockquote p,
  .wp-block-quote p {
    font-size: 20px;
  }
}
blockquote p,
.wp-block-quote p {
  line-height: 27px;
}
@media screen and (min-width: 320px) {
  blockquote p,
  .wp-block-quote p {
    line-height: calc(27px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  blockquote p,
  .wp-block-quote p {
    line-height: 30px;
  }
}
blockquote cite,
.wp-block-quote cite {
  margin-top: 7px;
  display: block;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .two-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .two-col.row-reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .two-col .col {
    flex: 1;
    max-width: 48%;
  }
}
.two-col__img {
  position: relative;
  padding-bottom: 56.2%;
}
.two-col__img img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.two-col__text {
  padding: 25px 0;
}

.back-to-top {
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: 0.3s ease-in-out;
}
.back-to-top:hover, .back-to-top:focus, .back-to-top:active {
  opacity: 0.85;
}
.back-to-top__img {
  width: 24px;
  height: 24px;
  background-color: #3E3AE9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top span {
  display: none;
}
@media (min-width: 768px) {
  .back-to-top span {
    display: inline-block;
    margin-left: 8px;
    color: #363636;
  }
}
@media (min-width: 992px) {
  .back-to-top {
    margin-right: 70px;
    margin-bottom: 5rem;
  }
}

.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-weight: 700;
}
.editor h2 strong,
.editor h3 strong,
.editor h4 strong,
.editor h5 strong,
.editor h6 strong {
  color: #363636;
}
.editor h2 {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .editor h2 {
    margin-top: 6rem;
    margin-bottom: 30px;
  }
}
.editor h3,
.editor h4 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .editor h3,
  .editor h4 {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.editor p {
  margin: 0 0 1.4rem 0;
}
.editor ul {
  margin: 1.4rem 0;
}
.editor ul li {
  margin: 0 0 0.8rem 0;
}
.editor p:last-of-type,
.editor li:last-of-type {
  margin-bottom: 0;
}
.editor a:not(.post-card):not(.vpn-card):not(.no-link):hover {
  opacity: 0.8;
}
.editor .wp-block-image {
  margin: 25px 0;
}
@media (min-width: 992px) {
  .editor .wp-block-image {
    margin: 3rem 0;
  }
}
.editor .wp-block-image img {
  border-radius: 5px;
}
.editor .wp-block-image figcaption {
  text-align: center;
}
.editor strong {
  font-weight: 700;
  color: #0d0d0d;
}
.editor .single-thumbnail {
  display: none;
}
.editor-country h2 {
  margin-top: 50px;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .editor-country h2 {
    margin-top: 10rem;
    margin-bottom: 4rem;
  }
}
.editor-country h3 {
  margin-top: 40px;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .editor-country h3 {
    margin-top: 5rem;
    margin-bottom: 3.4rem;
  }
}
.editor-country p {
  margin: 0 0 1.8rem 0;
}
.editor-country p:last-of-type {
  margin: 0;
}

.cta {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background-color: white;
  padding: 54px 20px 25px 20px;
  position: relative;
  max-width: 360px;
  margin: 0 auto 25px auto;
}
@media (min-width: 768px) {
  .cta {
    max-width: 100%;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cta {
    padding: 60px 40px 40px 40px;
  }
}
.cta__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #C2EECC;
  padding: 4px 30px 4px 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  min-width: 140px;
  font-weight: 600;
  border-top-left-radius: 5px;
}
.cta__logo {
  width: 100%;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}
.cta__logo img {
  max-height: 100%;
}
@media (min-width: 992px) {
  .cta__logo {
    max-width: 190px;
  }
}
.cta__review {
  text-align: center;
}
.cta__list {
  margin: 0 0 2rem 0;
}
.cta__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}
.cta__btns a:nth-of-type(2) {
  margin-top: 10px;
}
.cta.small {
  box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.08);
  height: 100%;
  font-size: 16px;
  line-height: 24px;
}
.cta.small .vpn-review__number {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .cta.small .vpn-review__number {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .cta.small .vpn-review__number {
    font-size: 18px;
  }
}
.cta.small .vpn-review__number {
  line-height: 25px;
}
@media screen and (min-width: 320px) {
  .cta.small .vpn-review__number {
    line-height: calc(25px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .cta.small .vpn-review__number {
    line-height: 27px;
  }
}
@media (min-width: 992px) {
  .cta.small {
    padding: 52px 20px 22px 20px;
  }
}
.cta.small .cta__logo {
  width: 180px;
  height: 60px;
}
.cta-horizontal {
  box-shadow: 0px 3px 8px rgba(19, 28, 60, 0.25);
}
@media (min-width: 768px) {
  .cta-horizontal {
    margin-bottom: 25px;
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .cta-horizontal {
    margin-bottom: 25px;
    padding: 30px 60px;
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .cta-horizontal__row {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .cta-horizontal__row .cta__logo {
    margin: 0 auto 0 0;
  }
  .cta-horizontal__row .cta__list {
    margin-bottom: 0;
  }
  .cta-horizontal__row .cta__btns-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .cta-horizontal__row {
    grid-template-columns: 1fr 2fr auto;
  }
}
.cta-horizontal .btn__link {
  max-width: 172px;
}

.top3--padding {
  padding: 40px 0 15px 0;
}
@media (min-width: 992px) {
  .top3--padding {
    padding: 6rem 0 3.5rem 0;
  }
}
.top3__title {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .top3__title {
    margin-bottom: 8rem;
  }
}
.top3 .llc-banner-wide:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}

.tableof-contents {
  margin-bottom: 40px;
  border: 1px solid #C6C6C6;
  border-radius: 5px;
  padding: 24px 25px 22px 25px;
  position: relative;
}
.tableof-contents:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  width: 7px;
  background-color: #CCF7FF;
  border-radius: 5px 0px 0px 5px;
}
@media (min-width: 992px) {
  .tableof-contents {
    margin-bottom: 60px;
    padding: 35px 45px 30px 45px;
  }
}
.tableof-contents__title {
  margin-bottom: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #363636;
  line-height: 1;
}
.tableof-contents__title {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .tableof-contents__title {
    font-size: calc(26px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .tableof-contents__title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .tableof-contents__title {
    margin-bottom: 2.5rem;
  }
}
.tableof-contents__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tableof-contents__list li a {
  display: block;
  padding: 5px 0;
  font-weight: 500;
  color: #494949;
}
.tableof-contents__list li a:hover {
  color: #3E3AE9;
}
.tableof-contents__list li a.active {
  color: #3E3AE9;
}
@media (min-width: 768px) {
  .tableof-contents__2col {
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
}

.recommended {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .recommended {
    padding: 7rem 0;
  }
}
@media (min-width: 992px) {
  .recommended {
    padding: 5rem 0 11rem 0;
  }
}
.recommended__intro {
  max-width: 540px;
  margin: 0 auto 6rem auto;
  text-align: center;
}
@media (min-width: 992px) {
  .recommended__intro {
    margin: 0 auto 10rem auto;
    max-width: 700px;
  }
}
@media (min-width: 768px) {
  .recommended__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .recommended__grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    grid-template-rows: 232px 232px;
    row-gap: 2.8rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}
.recommended__larger {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0px 4px 6px -2px rgba(40, 38, 56, 0.2);
}
@media (min-width: 768px) {
  .recommended__larger {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .recommended__larger {
    grid-column: 1;
    grid-row: 1/3;
  }
}
.recommended__larger.color-card {
  min-height: 320px;
}
@media (min-width: 768px) {
  .recommended__larger.color-card {
    padding-left: 3.2rem;
    padding-right: 2.2rem;
    padding-top: 2.2rem;
  }
}
.recommended__larger.has-bg-img {
  border: 0;
}
@media (min-width: 768px) {
  .recommended__regular {
    width: 48.5%;
  }
}
@media (min-width: 992px) {
  .recommended__regular {
    width: 100%;
  }
}

.archive-hero {
  padding: 5rem 0 15rem 0;
}
@media (min-width: 992px) {
  .archive-hero {
    padding: 8rem 0 22rem 0;
  }
}
.archive-hero__title {
  text-align: center;
  text-transform: capitalize;
}
.archive__content {
  padding-bottom: 4rem;
  margin-top: -9rem;
}
@media (min-width: 992px) {
  .archive__content {
    padding-bottom: 15rem;
    margin-top: -15rem;
  }
}
.archive__row {
  display: grid;
  grid-row-gap: 3.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .archive__row {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 8rem;
  }
}
@media (min-width: 768px) {
  .archive__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive__row .color-card {
  position: relative;
  z-index: 9;
}

.highlighted-box {
  padding: 20px;
  background: #EDF9FC;
  border-radius: 5px;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .highlighted-box {
    padding: 35px;
    margin: 5rem 0;
  }
}
.highlighted-box--full {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.highlighted-box--full:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  background: #EDF9FC;
  z-index: -1;
}
.highlighted-box--grey {
  background: #F9F9F9;
}
.highlighted-box--grey.highlighted-box--full:before {
  background: #F9F9F9;
}
.highlighted-box--orange {
  background: #FFEED6;
}
.highlighted-box--orange h2,
.highlighted-box--orange h3,
.highlighted-box--orange h4 {
  color: #E48D0A;
}
.highlighted-box--orange.highlighted-box--full:before {
  background: #FFEED6;
}
.highlighted-box .text ul,
.highlighted-box .text ol {
  margin: 0;
}
.highlighted-box .text li,
.highlighted-box .text p {
  margin-bottom: 16px;
}
.highlighted-box .text li:last-of-type,
.highlighted-box .text p:last-of-type {
  margin-bottom: 0;
}
.highlighted-box .text p {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .highlighted-box .text p {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.highlighted-box .text p:first-of-type {
  margin-top: 0;
}
.highlighted-box .text p ~ ul,
.highlighted-box .text p ol {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .highlighted-box .text p ~ ul,
  .highlighted-box .text p ol {
    margin-top: 20px;
  }
}
.highlighted-box .text h2,
.highlighted-box .text h3 {
  margin-bottom: 1.4rem;
  margin-top: 0;
}
.highlighted-box .text h4,
.highlighted-box .text h5 {
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
}
.highlighted-box__btn {
  margin-top: 17px;
  margin-bottom: 5px;
  text-align: center;
}
.highlighted-box__btn p {
  display: inline-block;
  margin: 0;
}
@media (min-width: 992px) {
  .highlighted-box__btn {
    margin-top: 22px;
  }
}

.pricing {
  margin-bottom: 35px;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .pricing {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .pricing {
    margin-left: -200px;
    margin-right: -200px;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.pricing__title {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .pricing__title {
    margin-bottom: 5rem;
  }
}
.pricing__title h2,
.pricing__title h3,
.pricing__title h4 {
  margin: 0;
}
.pricing__title p {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .pricing__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    align-items: stretch;
  }
}
@media (min-width: 1200px) {
  .pricing__grid {
    justify-content: space-between;
  }
}
.pricing__item {
  border-radius: 10px;
  border: 1px solid #EBE9E9;
  box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  max-width: 300px;
  margin: 0 auto 40px auto;
}
.pricing__item.bg-shape {
  position: relative;
}
.pricing__item.bg-shape:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background-color: #F6F5F5;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 35%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 35%, 0% 100%);
  z-index: -1;
}
@media (min-width: 768px) {
  .pricing__item {
    width: 46%;
    margin-bottom: 40px;
    padding: 30px 25px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .pricing__item {
    padding: 40px 25px;
    width: 32%;
    margin: 0;
  }
}
.pricing__item.highlighted-item {
  border: 1px solid #88E5FA;
}
.pricing__item.highlighted-item:after {
  background-color: #EDF9FC;
}
.pricing__name {
  line-height: 1.2;
  margin-bottom: 14px;
  color: #3E3AE9;
  font-weight: 700;
  display: block;
}
.pricing__name {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .pricing__name {
    font-size: calc(26px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .pricing__name {
    font-size: 32px;
  }
}
.pricing__light-price {
  line-height: 1.4;
  color: #999999;
  display: block;
  font-weight: 500;
  margin-bottom: 3px;
}
.pricing__light-price {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .pricing__light-price {
    font-size: calc(18px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .pricing__light-price {
    font-size: 22px;
  }
}
.pricing__price {
  line-height: 1.4;
  display: block;
  color: black;
  font-weight: 700;
}
.pricing__price {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .pricing__price {
    font-size: calc(22px + 4 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .pricing__price {
    font-size: 26px;
  }
}
.pricing__desc {
  color: #999999;
  display: block;
}
.pricing__list {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .pricing__list {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
}
.pricing__list-item {
  text-align: left;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
  margin-bottom: 5px;
}
.pricing__list-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background-image: url("img/green-checkmark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .pricing__list-item:after {
    margin-top: 3px;
    top: 0;
  }
}
.pricing__list-desc {
  display: block;
  margin: 5px 0 7px 0;
}
.pricing__btn {
  text-align: center;
}
.pricing__btn .btn {
  min-width: 150px;
}
.pricing__btn .btn .arrow-right {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .pricing__btn {
    margin-top: auto;
  }
}

.pricing-compare__item {
  border-radius: 0;
  border: 1px solid #ECECEC;
  box-shadow: none;
  padding: 0;
}
.pricing-compare__item-top {
  padding: 30px 20px;
}
.pricing-compare__item .pricing__btn {
  margin-top: 15px;
}
.pricing-compare__item .pricing__name {
  font-size: 22px;
  line-height: 32px;
}
.pricing-compare__item .pricing__price {
  font-size: 26px;
  line-height: 36px;
}
@media (min-width: 768px) {
  .pricing-compare__btn {
    margin-top: 25px;
  }
}
.pricing-compare__list {
  margin: 0;
}
.pricing-compare__list-item {
  padding: 15px 20px 15px 50px;
  border-top: 1px solid #ECECEC;
  margin-bottom: 0;
}
.pricing-compare__list-item:after {
  left: 20px;
  top: 15px;
}

@media (min-width: 1200px) {
  .pricing-table__mob {
    display: none;
  }
}
.pricing-table__desktop {
  display: none;
}
@media (min-width: 1200px) {
  .pricing-table__desktop {
    display: block;
  }
  .pricing-table__desktop .pricing__item {
    width: auto;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    border-right: 0;
  }
  .pricing-table__desktop .pricing__item:last-of-type {
    border-right: 1px solid #ECECEC;
  }
  .pricing-table__desktop .pricing__item-content {
    margin-bottom: 16px;
  }
  .pricing-table__desktop .btn__cta {
    min-width: 100%;
  }
  .pricing-table__desktop .pricing__btn {
    margin-top: auto;
  }
  .pricing-table__desktop .pricing__list {
    border-left: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    display: grid;
    grid-auto-rows: 1fr;
  }
  .pricing-table__desktop .pricing__list:last-of-type {
    border-right: 1px solid #ECECEC;
  }
}
@media (min-width: 1200px) {
  .pricing-table__title {
    border-right: 1px solid #ECECEC;
    padding: 11px 12px 11px 16px;
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .pricing-table__headings {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .pricing-table__rows {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .pricing-table__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ECECEC;
  }
  .pricing-table__cell.first-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pricing-table__cell.first-col:first-of-type .pricing-table__title {
    border-top: 1px solid #ECECEC;
  }
  .pricing-table__cell:last-of-type {
    border-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .pricing-table__feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.home-hero {
  margin-bottom: 30px;
  margin-bottom: 2rem;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .home-hero {
    min-height: 400px;
    margin-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .home-hero {
    min-height: 550px;
  }
}
.home-hero__bg {
  background: linear-gradient(181.6deg, rgba(237, 249, 252, 0) -19.79%, #EDF9FC 133.82%);
  border-radius: 0px 0px 20px 20px;
  margin-left: -20px;
  margin-right: -20px;
}
.home-hero__bg-img {
  position: absolute;
  top: -60%;
  right: 0;
  z-index: -1;
}
@media (min-width: 1200px) {
  .home-hero__bg-img {
    width: 420px;
    top: -50%;
  }
}
@media (min-width: 768px) {
  .home-hero__bg {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .home-hero__bg {
    border-radius: 0px 0px 40px 40px;
  }
}
@media (min-width: 1200px) {
  .home-hero__bg {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (min-width: 1600px) {
  .home-hero__bg {
    margin-left: -150px;
    margin-right: -150px;
  }
}
.home-hero__content {
  text-align: center;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .home-hero__content {
    padding: 60px 20px 60px 30px;
    text-align: left;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .home-hero__content {
    padding: 8rem 20px 8rem 70px;
    width: 65%;
  }
}
@media (min-width: 1600px) {
  .home-hero__content {
    padding: 8rem 20px 8rem 150px;
  }
}
.home-hero__text p {
  max-width: 500px;
}
.home-hero h1 {
  font-size: 30px;
}
@media screen and (min-width: 320px) {
  .home-hero h1 {
    font-size: calc(30px + 22 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .home-hero h1 {
    font-size: 52px;
  }
}
.home-hero h1 {
  line-height: 40px;
}
@media screen and (min-width: 320px) {
  .home-hero h1 {
    line-height: calc(40px + 29 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .home-hero h1 {
    line-height: 69px;
  }
}
.home-hero .btn {
  position: relative;
  z-index: 1;
}
.home-hero__img {
  padding: 0 20px 6rem 20px;
  position: relative;
}
@media (min-width: 768px) {
  .home-hero__img {
    padding: 30px 20px 30px 0;
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .home-hero__img {
    padding: 60px 40px 60px 0;
    width: 35%;
  }
}
@media (min-width: 1600px) {
  .home-hero__img {
    padding: 60px 150px 60px 0;
  }
}
.home-hero__desktop-img {
  display: none;
}
@media (min-width: 768px) {
  .home-hero__desktop-img {
    display: block;
    max-width: 450px;
    margin: 0 auto;
  }
}
.home-hero__mobile-img {
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-hero__mobile-img {
    display: none;
  }
}

.search-box {
  margin: 4rem auto 0 auto;
  max-width: 260px;
}
@media (min-width: 768px) {
  .search-box {
    max-width: 500px;
    margin: 4rem 0 0 0;
  }
}
.search-box .btn {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .search-box .btn {
    margin-top: 0;
    margin-left: 11px;
    height: 54px;
  }
}
@media (min-width: 768px) {
  .search-box form {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.rank-math-block {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .rank-math-block {
    max-width: 800px;
    margin: 0 auto;
  }
}
.rank-math-block .rank-math-question {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-bottom: 12px;
  padding-top: 12px;
  padding-left: 16px;
  cursor: pointer;
  padding-right: 14px;
  position: relative;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 500;
}
.rank-math-block .rank-math-question {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .rank-math-block .rank-math-question {
    font-size: calc(16px + 3 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .rank-math-block .rank-math-question {
    font-size: 19px;
  }
}
.rank-math-block .rank-math-question {
  line-height: 19px;
}
@media screen and (min-width: 320px) {
  .rank-math-block .rank-math-question {
    line-height: calc(19px + 11 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .rank-math-block .rank-math-question {
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .rank-math-block .rank-math-question {
    padding-bottom: 17px;
    padding-top: 17px;
    padding-left: 25px;
    padding-right: 20px;
  }
}
.rank-math-block .rank-math-question:after {
  display: none;
}
.rank-math-block .rank-math-question:before {
  content: "";
  background-image: url(img/faq-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  margin-left: 15px;
}
.rank-math-block .rank-math-answer {
  padding-left: 16px;
  padding-right: 16px;
  display: none;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .rank-math-block .rank-math-answer {
    padding-right: 30px;
    padding-left: 25px;
  }
}
.rank-math-block .rank-math-answer p,
.rank-math-block .rank-math-answer li {
  margin: 0 0 2rem 0;
}
.rank-math-block .rank-math-list-item {
  border: 1px solid #EEEEEE;
  background-color: white;
  border-radius: 2px;
  margin-bottom: 14px;
}
.rank-math-block .rank-math-list-item.active {
  border-color: #F2F2F2;
}
.rank-math-block .rank-math-list-item.active .rank-math-question:before {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.rank-math-block .rank-math-list-item.active .rank-math-answer {
  transition: all 0.4s ease-out;
}
.rank-math-block .rank-math-list-item--active {
  background: #F4FCFF;
  border-color: #BBE0EF;
}
.rank-math-block .rank-math-list-item--active .rank-math-question:before {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.rank-math-block .rank-math-list-item--active .rank-math-answer {
  padding-bottom: 1.125rem;
  transition: all 0.4s ease-out;
}

.faq-container {
  background-image: url("img/faq-bg.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 200px;
  padding: 40px 20px 70px 20px;
  margin-bottom: -20px;
}
@media (min-width: 768px) {
  .faq-container {
    padding: 6rem 20px 9rem 20px;
  }
}
@media (min-width: 992px) {
  .faq-container {
    margin-bottom: -35px;
    padding-bottom: 12rem;
  }
}
@media (min-width: 1200px) {
  .faq-container {
    background-size: 400px;
  }
}
.faq-container h2 {
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .faq-container h2 {
    max-width: 800px;
    margin: 0 auto 2.2rem auto;
  }
}

.faq-container-full {
  position: relative;
  padding: 40px 0px 70px 0px;
  margin: 40px 0;
}
.faq-container-full:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  background: #F9F9F9;
  z-index: -1;
  background-image: url("img/faq-bg.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 200px;
}
@media (min-width: 1200px) {
  .faq-container-full:after {
    background-size: 400px;
  }
}
@media (min-width: 768px) {
  .faq-container-full {
    padding: 7rem 0px 11rem 0px;
    margin: 9rem 0;
  }
}
.faq-container-full h2 {
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .faq-container-full h2 {
    max-width: 800px;
    margin: 0 auto 2.2rem auto;
  }
}

.step-number {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  background-color: #FC9E47;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1;
  padding-top: 2px;
}
.step-number {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .step-number {
    font-size: calc(24px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .step-number {
    font-size: 30px;
  }
}

.home-steps {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .home-steps {
    padding: 5rem 0 10rem 0;
  }
}
.home-steps__wrap {
  background: linear-gradient(180deg, rgba(237, 249, 252, 0) 0%, #EFFCFF 51.56%, rgba(237, 249, 252, 0) 98.44%);
  position: relative;
  overflow-x: hidden;
}
.home-steps__wrap::after, .home-steps__wrap::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #F3F4FF 0%, #EBFBFF 0.01%, rgba(243, 244, 255, 0) 100%);
  z-index: -1;
}
@media (min-width: 768px) {
  .home-steps__wrap::after, .home-steps__wrap::before {
    width: 70rem;
    height: 70rem;
  }
}
.home-steps__wrap::after {
  top: 7%;
  left: -30%;
}
@media (min-width: 992px) {
  .home-steps__wrap::after {
    top: 10%;
    left: -10%;
  }
}
.home-steps__wrap::before {
  bottom: 10%;
  right: -30%;
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .home-steps__wrap::before {
    right: -10%;
    bottom: 5%;
  }
}
.home-steps__intro {
  max-width: 820px;
  margin: 0 auto 8rem auto;
  text-align: center;
}
.home-steps__step {
  margin-bottom: 8rem;
}
.home-steps__step:last-of-type {
  margin-bottom: 0;
}
.home-steps__step p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .home-steps__step {
    margin-bottom: 0;
    width: 40%;
    margin-top: -2rem;
    min-height: 280px;
  }
  .home-steps__step:nth-child(even) {
    margin-left: auto;
  }
  .home-steps__step:nth-of-type(1) {
    margin-top: 0;
  }
}
.home-steps__step .step-link:hover h3 {
  color: #3E3AE9;
}
.home-steps__step .step-number {
  position: relative;
}
.home-steps__step .step-number::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: calc(100% + 20px);
  display: none;
}
@media (min-width: 768px) {
  .home-steps__step .step-number::before {
    display: block;
  }
}
.home-steps__step:nth-of-type(2) .step-number::before, .home-steps__step:nth-of-type(8) .step-number::before, .home-steps__step:nth-of-type(14) .step-number::before {
  background-image: url(img/step-arrow2.svg);
  width: 5rem;
  height: 5rem;
  left: -30%;
}
.home-steps__step:nth-of-type(3) .step-number::before, .home-steps__step:nth-of-type(9) .step-number::before, .home-steps__step:nth-of-type(15) .step-number::before {
  background-image: url(img/step-arrow3.svg);
  width: 7rem;
  height: 3rem;
  right: -95%;
}
.home-steps__step:nth-of-type(4) .step-number::before, .home-steps__step:nth-of-type(10) .step-number::before, .home-steps__step:nth-of-type(16) .step-number::before {
  background-image: url(img/step-arrow4.svg);
  width: 9rem;
  height: 6rem;
  left: -95%;
}
.home-steps__step:nth-of-type(5) .step-number::before, .home-steps__step:nth-of-type(11) .step-number::before, .home-steps__step:nth-of-type(17) .step-number::before {
  background-image: url(img/step-arrow5.svg);
  width: 10rem;
  height: 4rem;
  left: 80%;
}
.home-steps__step:nth-of-type(6) .step-number::before, .home-steps__step:nth-of-type(12) .step-number::before, .home-steps__step:nth-of-type(18) .step-number::before {
  background-image: url(img/step-arrow6.svg);
  width: 11rem;
  height: 8rem;
  left: -120%;
}
.home-steps__step:nth-of-type(7) .step-number::before, .home-steps__step:nth-of-type(13) .step-number::before, .home-steps__step:nth-of-type(19) .step-number::before {
  background-image: url(img/step-arrow7.svg);
  width: 10rem;
  height: 4rem;
  left: 70%;
}
.home-steps__title {
  transition: 0.3s ease;
}
.home-steps .step-number {
  margin-bottom: 2rem;
}

.color-card {
  display: block;
  background-color: white;
  border: 1px solid #EDEDED;
  box-shadow: 2px 4px 6px -2px rgba(40, 38, 56, 0.2);
  border-radius: 5px;
  padding: 20px 20px 30px 20px;
  margin: 0 auto 3rem auto;
  max-width: 400px;
  width: 100%;
  min-height: 200px;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .color-card {
    max-width: 100%;
    margin: 0 0 3rem 0;
  }
}
@media (min-width: 992px) {
  .color-card {
    margin: 0;
    padding: 20px;
  }
}
.color-card:hover {
  box-shadow: 2px 3px 9px -1px rgba(40, 38, 56, 0.2);
  transform: scale(1.008);
}
.color-card:hover .color-card__arrow {
  transform: translate(3px, -3px);
}
.color-card.has-bg-img {
  position: relative;
}
.color-card.has-bg-img .color-card__arrow {
  position: relative;
  z-index: 1;
}
.color-card.has-bg-img .color-card__title {
  position: relative;
  z-index: 1;
}
.color-card.has-bg-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s ease-in-out;
  background-color: rgba(20, 20, 20, 0);
  border-radius: 5px;
}
.color-card.has-bg-img:hover:after {
  background-color: rgba(20, 20, 20, 0.1);
}
.color-card__arrow {
  display: block;
  margin: 0 0 1.3rem auto;
  transition: 0.3s ease-in-out;
}
.color-card__title {
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.color-card__title {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .color-card__title {
    font-size: calc(24px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .color-card__title {
    font-size: 30px;
  }
}
.color-card__title {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .color-card__title {
    line-height: calc(30px + 6 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .color-card__title {
    line-height: 36px;
  }
}
.color-card__lightblue {
  box-shadow: 0px 4px 6px -2px rgba(40, 38, 56, 0.2);
  border: 1px solid #E1F4F9;
  background-color: #EDF9FC;
}
.color-card__darkblue {
  background-color: #4C49E0;
  border: 1px solid #4C49E0;
}
.color-card__darkblue .color-card__title {
  color: white;
}
.color-card__orange {
  background-color: #FFEED6;
  border: 1px solid #FFE3D8;
}
.color-card__orange .color-card__title {
  color: #FF8F28;
}

.llc-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 8px 1px rgba(40, 38, 56, 0.1);
  border-radius: 5px;
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.llc-card:hover {
  box-shadow: 0px 0px 11px 1px rgba(40, 38, 56, 0.1);
  transform: scale(1.008);
}
.llc-card__logo {
  height: 140px;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}
@media (min-width: 992px) {
  .llc-card__logo {
    height: 150px;
  }
}
.llc-card__logo img {
  max-width: 70%;
  max-height: 50%;
}
.llc-card__content {
  padding: 18px 16px;
}
.llc-card__title {
  margin-bottom: 10px;
  line-height: 1.3;
}
.llc-card__description {
  margin-bottom: 0;
}
.llc-card__description p {
  margin-bottom: 0;
}
.llc-card__description a {
  position: relative;
  z-index: 9;
}
.llc-card__arrow {
  position: absolute;
  top: 18px;
  right: 15px;
}

.post-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px -2px rgba(40, 38, 56, 0.1);
  border-radius: 5px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.post-card__img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.post-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card__content {
  padding: 30px 20px;
  position: relative;
}
.post-card__title {
  line-height: 1.3;
  margin-bottom: 0;
}
.post-card__arrow {
  position: absolute;
  top: 14px;
  right: 15px;
}

.cta-block-button {
  display: block;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  position: relative;
}
.cta-block-button__text p {
  margin-bottom: 0;
  display: inline;
}
.cta-block-button__text a {
  position: relative;
  z-index: 1;
}
.cta-block-button__wrap {
  border: 1.5px solid #3E3AE9;
  border-radius: 5px;
  margin: 3rem 0;
  min-height: 124px;
}
@media (min-width: 992px) {
  .cta-block-button__wrap {
    margin: 5rem 0;
  }
}

.llc-banner {
  padding-bottom: 28px;
  margin: 3rem 0;
  border-bottom: 1px solid #B0B0B0;
}
@media (min-width: 768px) {
  .llc-banner {
    display: grid;
    grid-template-columns: 2fr 3fr auto;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .llc-banner {
    margin: 4rem 0;
  }
}
.llc-banner__logo {
  width: 100%;
  max-width: 180px;
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}
.llc-banner__logo img {
  max-height: 100%;
}
@media (min-width: 768px) {
  .llc-banner__logo {
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .llc-banner__logo {
    max-width: 190px;
  }
}
@media (min-width: 768px) {
  .llc-banner .llc-review {
    justify-content: flex-start;
    margin-bottom: 0;
    margin-top: 3.5rem;
  }
}
.llc-banner .llc-review__number {
  margin-left: 22px;
}
.llc-banner__list.llc-banner__list--margin {
  margin: 2rem 0 3rem 0;
}
@media (min-width: 768px) {
  .llc-banner__list.llc-banner__list--margin {
    margin: 2rem 0;
  }
}
.llc-banner__right {
  text-align: center;
}
@media (min-width: 768px) {
  .llc-banner .btn__cta {
    max-width: 250px;
  }
}

.llc-banner-main {
  background-color: #F9F9F9;
  border: 1px solid #C6C6C6;
  border-radius: 5px;
  padding: 30px 20px;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .llc-banner-main {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .llc-banner-main {
    padding: 5rem 4.2rem 4.2rem 4.2rem;
    margin: 3.8rem 0;
  }
}
.llc-banner-main .llc-banner__logo {
  margin: 0 0 3.5rem 0;
}
@media (min-width: 992px) {
  .llc-banner-main .llc-banner__logo {
    margin-bottom: 5rem;
  }
}
.llc-banner-main .btn {
  width: 100%;
  max-width: 240px;
}
.llc-banner-main .llc-price {
  padding-top: 3.5rem;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
  border-top: 1px solid #E1E1E1;
}
.llc-banner-main .llc-price strong {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .llc-banner-main .llc-price strong {
    font-size: calc(24px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .llc-banner-main .llc-price strong {
    font-size: 26px;
  }
}
.llc-banner-main__rating {
  display: flex;
  align-items: baseline;
  margin: 2.5rem 0;
}
.llc-banner-main__rating-small {
  display: flex;
  align-items: baseline;
  margin: 1rem 0;
}
.llc-banner-main__rating-small .llc-review__stars {
  height: 13px;
  font-size: 13px;
  width: 65px;
}
.llc-banner-main__rating-small .llc-review__number {
  display: none;
}
.llc-banner-main__rating-label {
  margin-right: 9px;
}
@media (min-width: 768px) {
  .llc-banner-main__left {
    width: 40%;
  }
}
.llc-banner-main__right .llc-banner-main__subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin: 2.8rem 0 1.6rem 0;
}
@media (min-width: 768px) {
  .llc-banner-main__right .llc-banner-main__subtitle.mt-0 {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .llc-banner-main__right {
    width: 53%;
  }
}
.llc-banner-main .llc-review {
  flex-direction: row-reverse;
  margin: 0;
}
.llc-banner-main .llc-review__number {
  font-weight: 700;
}

.llc-banner-desc {
  background-color: #F9F9F9;
  border: 3px solid #97E5F7;
  box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 30px 20px;
  margin: 5rem 0;
}
@media (min-width: 992px) {
  .llc-banner-desc {
    padding: 5rem 3rem 3.5rem 3rem;
    margin: 7rem 0;
  }
}
.llc-banner-desc__top {
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}
@media (min-width: 768px) {
  .llc-banner-desc__top {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.llc-banner-desc__text ul,
.llc-banner-desc__text ol {
  margin-bottom: 0;
}
.llc-banner-desc .llc-banner__logo {
  margin: 0 0 3.5rem 0;
}
@media (min-width: 768px) {
  .llc-banner-desc .llc-banner__logo {
    margin: 0;
    max-width: 200px;
  }
}
.llc-banner-desc .llc-price {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .llc-banner-desc .llc-price {
    margin: 0;
  }
}
.llc-banner-desc .llc-price strong {
  margin-right: 7px;
  line-height: 1;
}
@media (min-width: 768px) {
  .llc-banner-desc .btn__cta {
    max-width: 250px;
  }
}

.llc-price {
  margin-bottom: 1.8rem;
}
.llc-price strong {
  font-weight: 700;
}

.llc-review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  padding-right: 10px;
}
.llc-review__number {
  color: #363636;
  line-height: 1;
  margin: 0 10px;
}
.llc-review__stars {
  position: relative;
  display: inline-block;
  font-family: Times;
  height: 15px;
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
  width: 75px;
}
.llc-review__stars:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
  height: 14px;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FC9E47;
}
.llc-review__stars:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  content: "★★★★★";
  color: #FC9E47;
  overflow: hidden;
}
.llc-review__stars.star-1:after {
  width: calc(var(--rating) / 5 * 100%);
}
.llc-review__stars.star-2:after {
  width: calc(var(--rating) / 5 * 100% + 3px);
}
.llc-review__stars.star-3:after {
  width: calc(var(--rating) / 5 * 100% + 6px);
}
.llc-review__stars.star-4:after {
  width: calc(var(--rating) / 5 * 100% + 9px);
}
.llc-review__stars.star-5:after {
  width: calc(var(--rating) / 5 * 100% + 12px);
}

.llc-banner-wide {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #DFDFDF;
}
@media (min-width: 768px) {
  .llc-banner-wide {
    padding-bottom: 3.3rem;
    margin-bottom: 3.3rem;
    display: grid;
    grid-template-columns: 28% 1fr 28%;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .llc-banner-wide {
    grid-template-columns: 37% 1fr 25%;
  }
}
.llc-banner-wide__logo {
  width: 100%;
  max-width: 180px;
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}
.llc-banner-wide__logo img {
  max-height: 100%;
}
@media (min-width: 992px) {
  .llc-banner-wide__logo {
    max-width: 200px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .llc-banner-wide__left {
    display: grid;
    grid-template-columns: 1fr 37%;
    align-items: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.llc-banner-wide .llc-review__number {
  display: none;
}
.llc-banner-wide__info {
  text-align: center;
}
@media (min-width: 768px) {
  .llc-banner-wide .llc-banner__list--margin {
    margin: 0;
  }
}
.llc-banner-wide__right {
  text-align: center;
}
.llc-banner-wide__btn {
  text-align: center;
}
@media (min-width: 768px) {
  .llc-banner-wide__btn {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .llc-banner-wide .btn__cta {
    max-width: 250px;
    width: 100%;
  }
}

.striped-list {
  margin: 30px 0;
  background: #F3FDFF;
  border-radius: 5px;
  overflow: hidden;
  min-height: 50px;
}
@media (min-width: 992px) {
  .striped-list {
    margin: 5rem 0;
  }
}
.striped-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.striped-list ul li {
  margin: 0;
  padding: 6px 10px 6px 30px;
  position: relative;
}
.striped-list ul li:nth-child(even) {
  background-color: #DBF3F9;
}
@media (min-width: 992px) {
  .striped-list ul li {
    padding: 7px 10px 7px 40px;
  }
}
.striped-list ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 11px;
  width: 16px;
  height: 16px;
  background-image: url("img/green-checkmark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .striped-list ul li:before {
    left: 13px;
    top: 14px;
  }
}

.decorated-list {
  margin: 30px 0;
  background: #F9F9F9;
  padding: 10px 20px;
}
@media (min-width: 992px) {
  .decorated-list {
    margin: 5rem 0;
    padding: 2rem 3.2rem;
  }
}
.decorated-list__no-bg {
  background-color: transparent;
  padding: 0;
  margin: 24px 0;
}
@media (min-width: 992px) {
  .decorated-list__no-bg {
    margin: 2rem 0;
  }
}
.decorated-list ul {
  list-style: none;
  padding: 0;
}
.decorated-list ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .decorated-list ul li {
    padding-left: 40px;
  }
}
.decorated-list ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  background: #DCF9FF;
  background-image: url("img/green-checkmark.svg");
  background-size: 67%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 1px solid #BCF4FF;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .decorated-list ul li:before {
    margin-top: 3px;
    top: 0;
  }
}
.decorated-list h2,
.decorated-list h3,
.decorated-list h4,
.decorated-list h5,
.decorated-list h6 {
  margin: 0 0 1.6rem 0;
}

.custom-list__text {
  margin-bottom: 30px;
}
.custom-list__item {
  display: flex;
  margin-top: 32px;
}
@media (min-width: 992px) {
  .custom-list__item {
    margin-top: 3.7rem;
  }
}
.custom-list__item h3 {
  margin: 0 0 12px 0;
}
@media (min-width: 992px) {
  .custom-list__item h3 {
    margin-bottom: 1.6rem;
  }
}
.custom-list__item-icon {
  width: 30px;
  height: 30px;
  background: #DCF9FF;
  border-radius: 50%;
  border: 1px solid #BCF4FF;
  margin-right: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .custom-list__item-icon {
    margin-right: 17px;
    margin-top: 3px;
    width: 33px;
    height: 33px;
  }
}
.custom-list__item-content {
  flex: 1;
}

.numbered-heading .numbered-heading__title-h2 {
  margin: 60px 0 20px 0;
}
@media (min-width: 992px) {
  .numbered-heading .numbered-heading__title-h2 {
    margin: 10rem 0 3.4rem 0;
  }
}
.numbered-heading .numbered-heading__title-h2 h2 {
  margin: 0;
  flex: 1;
}
.numbered-heading .numbered-heading__title-h3 {
  margin: 50px 0 20px 0;
}
@media (min-width: 992px) {
  .numbered-heading .numbered-heading__title-h3 {
    margin: 7rem 0 3.4rem 0;
  }
}
.numbered-heading__title {
  display: flex;
}
.numbered-heading__title span {
  flex: 1;
}
.numbered-heading__title-h3 span {
  font-size: 23px;
}
@media screen and (min-width: 320px) {
  .numbered-heading__title-h3 span {
    font-size: calc(23px + 10 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .numbered-heading__title-h3 span {
    font-size: 33px;
  }
}
.numbered-heading__title-h3 span {
  line-height: 33px;
}
@media screen and (min-width: 320px) {
  .numbered-heading__title-h3 span {
    line-height: calc(33px + 10 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .numbered-heading__title-h3 span {
    line-height: 43px;
  }
}
.numbered-heading__title-h3 .numbered-heading__number {
  margin-top: 2px;
  width: 29px;
  height: 29px;
  font-size: 17px;
}
@media (min-width: 992px) {
  .numbered-heading__title-h3 .numbered-heading__number {
    margin-top: 0;
    width: 40px;
    height: 40px;
    font-size: 23px;
    margin-right: 2rem;
  }
}
.numbered-heading__number {
  margin-top: 2px;
  margin-right: 15px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FC9E47;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  padding-top: 1px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .numbered-heading__number {
    margin-top: 4px;
  }
}
@media (min-width: 992px) {
  .numbered-heading__number {
    margin-right: 2.4rem;
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 1;
  }
}
.numbered-heading__number .numbered-heading__dot {
  display: none;
}
.numbered-heading__dot {
  display: inline-block;
  width: 20px;
}

.country-related {
  margin-top: 46px;
}
@media (min-width: 768px) {
  .country-related {
    margin-top: 10rem;
  }
}
.country-related__title {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .country-related__title {
    margin-bottom: 5.5rem;
  }
}
@media (min-width: 576px) {
  .country-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .country-related__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.country-related .recommended__regular {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .country-related .recommended__regular {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .country-related .recommended__regular {
    min-height: 23rem;
  }
}

.usaHtml5MapContainer text tspan {
  font-weight: 400;
}
.usaHtml5Map-areas-list {
  display: none !important;
}

#usa-html5-map-map-container_0 {
  width: 100% !important;
}

.usaHtml5Mapbottom {
  display: flex;
  flex-direction: column-reverse;
}

.usaHtml5MapSelector.mobile-only {
  padding: 0 20px;
  margin-top: 20px;
}
.usaHtml5MapSelector .select2-container {
  width: 100% !important;
}
.usaHtml5MapSelector .select2-container .select2-selection--single {
  height: 42px;
  border: 1px solid #DCDCDC;
}
.usaHtml5MapSelector .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  padding-left: 14px;
}
.usaHtml5MapSelector .select2-container .select2-selection--single .select2-selection__arrow {
  height: 42px;
}

.fm-scale {
  margin: 0 0 0 20px;
}
.fm-scale a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  border: 1px solid #e8e8e8 !important;
}
.fm-scale a:hover {
  color: #FC9E47 !important;
}
.fm-scale a:last-of-type {
  margin-right: 0;
}

.fm-scale-display {
  height: 2px;
}
.fm-scale-display div {
  background-color: #FC9E47;
  height: 2px;
}

.map-section {
  padding-top: 35px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .map-section {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .map-section {
    padding-top: 8rem;
  }
}
.map-section__intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 830px;
}
.map-section__intro h2 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .map-section__intro h2 {
    margin-bottom: 2.7rem;
  }
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.header {
  position: relative;
  background-color: white;
  box-shadow: 0px 2px 8px -3px rgba(43, 43, 43, 0.2);
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 61px;
}
.header__logo {
  display: flex;
}
.header__nav {
  position: fixed;
  right: 0;
  left: 0;
  top: -100%;
  width: 100%;
  text-align: center;
  transition: opacity 0.3s ease-out;
  z-index: 999;
  background-color: white;
  opacity: 0;
}
@media (min-width: 992px) {
  .header__nav {
    opacity: 1;
    position: static;
    width: auto;
    height: auto;
    margin-left: auto;
    background-color: transparent;
  }
}
.header__nav-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .header__nav-inner {
    padding: 0;
    display: flex;
    align-items: center;
  }
}
header.menu-opened .header__nav {
  top: 61px;
  height: 100%;
  overflow: auto;
  opacity: 1;
}
.header__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .header__menu {
    display: flex;
    align-items: center;
  }
}
.header__menu-btn {
  padding: 0px 0 15px 0;
}
@media (min-width: 992px) {
  .header__menu-btn {
    padding: 0px 0 20px 0;
  }
}
.header__menu-btn .btn {
  min-width: 160px;
  padding: 7px 20px;
  background-color: transparent;
  border: 1px solid #E8E8E8;
  color: #494949;
}
@media (min-width: 992px) {
  .header__menu-btn .btn {
    width: 100%;
    max-width: 430px;
    padding: 10px 20px;
  }
}
@media (min-width: 992px) {
  .header__menu-item {
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  .header__menu-item:hover .header__menu-link {
    color: #3E3AE9;
  }
}
@media (min-width: 992px) {
  .header__menu-item:hover .arrow-triangle.down {
    border-top: 6px solid #3E3AE9;
  }
}
@media (min-width: 992px) {
  .header__menu-item:hover .header__menu-dropdown {
    opacity: 1;
    visibility: visible;
  }
}
.header__menu-item:focus .header__menu-dropdown {
  height: auto;
  opacity: 1;
}
.header__menu-item.active {
  background-color: #EDF9FC;
}
.header__menu-item.active .header__menu-link {
  font-weight: 700;
}
.header__menu-link {
  display: block;
  padding: 14px 0px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s ease;
  color: #363636;
}
@media (min-width: 992px) {
  .header__menu-link {
    padding: 17px 7px;
    cursor: pointer;
    font-weight: 500;
  }
}
.header__menu-link .arrow-triangle {
  margin-left: 8px;
}
@media (min-width: 992px) {
  .header__menu-link .arrow-triangle {
    margin-left: 4px;
    margin-bottom: 3px;
  }
}
.header__menu-dropdown {
  background-color: #F9F9F9;
  transition: 0.3s ease;
  display: none;
  text-align: left;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .header__menu-dropdown {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    border-radius: 3px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    height: initial;
    min-height: 250px;
    background-color: white;
    padding-bottom: 0;
  }
}
.header__search {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .header__search {
    margin-top: 0;
    margin-left: 12px;
  }
}
.header__search .search-form {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .header__search .search-form {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .header__submenu {
    padding: 30px 0px 20px 0;
    text-align: left;
    min-width: 200px;
    margin-right: 50px;
    flex: 1;
  }
  .header__submenu:last-of-type {
    margin-right: 0;
  }
}
.header__submenu-title {
  margin-bottom: 10px;
  font-weight: 700;
  color: #363636;
}
@media (min-width: 992px) {
  .header__submenu-title {
    margin-bottom: 20px;
  }
}
.header__submenu a {
  color: #494949;
  display: block;
  line-height: 1.3;
  padding: 2px 0;
}
.header__submenu a:hover, .header__submenu a.active {
  color: #3E3AE9;
}
.header__submenu ul li {
  margin-bottom: 10px;
}
.header__submenu-row {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .header__submenu-row {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Small menu */
.menu-toggle {
  display: block;
  position: relative;
  z-index: 999;
  margin-left: 1.5rem;
  cursor: pointer;
}
.header-main .menu-toggle {
  bottom: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #363636;
}
.menu-toggle.opened span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.opened span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.opened span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.logo {
  max-width: 180px;
}
@media (min-width: 992px) {
  .logo {
    max-width: 250px;
  }
}

.footer {
  background-color: #2A2940;
  border-radius: 20px 20px 0px 0px;
}
@media (min-width: 992px) {
  .footer {
    border-radius: 40px 40px 0px 0px;
  }
}
.footer .logo {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .footer .logo {
    margin-right: 60px;
    flex-basis: auto;
  }
}
@media (min-width: 992px) {
  .footer .logo {
    margin-right: 75px;
  }
}
.footer__row {
  padding: 40px 0 5px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .footer__row {
    padding: 7.5rem 0 5rem 0;
  }
}
@media (min-width: 992px) {
  .footer__row {
    display: flex;
  }
}
@media (min-width: 992px) {
  .footer__col {
    margin-right: 40px;
    min-width: 80px;
    flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .footer__col {
    margin-right: 70px;
  }
}
.footer__title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__menu a, .footer__bottom a {
  font-weight: 300;
}
.footer__menu a:hover, .footer__bottom a:hover {
  opacity: 0.8;
}
.footer__menu li {
  margin-bottom: 10px;
}
.footer__menu a {
  color: #E5E6EB;
  display: block;
}
.footer__bottom {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 20px 0;
  }
}
.footer__bottom .menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__bottom .menu {
    justify-content: flex-start;
  }
}
.footer__bottom .menu > li {
  margin-right: 16px;
}
@media (min-width: 768px) {
  .footer__bottom .menu > li {
    margin-right: 25px;
  }
}
.footer__bottom .menu > li:last-of-type {
  margin-right: 0;
}
.footer__bottom .menu a {
  color: #E5E6EB;
}
.footer__copyright {
  margin: 20px 0 0 0;
  text-align: center;
  color: #E5E6EB;
  font-weight: 300;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin: 0;
    text-align: right;
  }
}

.main-content {
  padding: 20px 0 30px 0;
}
@media (min-width: 768px) {
  .main-content {
    padding: 35px 0 80px 0;
  }
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
.related-posts {
  margin-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .related-posts {
    padding-bottom: 0;
    margin-top: 10rem;
  }
}
.related-posts__title {
  margin-bottom: 3rem;
}
.related-posts .color-card {
  height: 100%;
}
@media (min-width: 992px) {
  .related-posts .color-card {
    min-height: 23rem;
  }
}

.single-hero {
  padding: 30px 0 70px 0;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .single-hero {
    padding: 50px 0 70px 0;
  }
}
@media (min-width: 992px) {
  .single-hero {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .single-hero__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
.single-hero__title {
  margin-bottom: 16px;
}
.single-hero__info {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .single-hero__info {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
}
.single-hero__info--justify {
  justify-content: space-between;
}
.single-hero__author {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .single-hero__author {
    margin-bottom: 0;
    margin-right: 3.5rem;
  }
}
.single-hero__author-img {
  width: 27px;
  height: 27px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-right: 9px;
}
.single-hero__author-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
}
.single-hero__author, .single-hero__date {
  display: flex;
  align-items: center;
}
.single-hero__author img, .single-hero__date img {
  margin-right: 9px;
  margin-bottom: 2px;
}
.single-hero__img {
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .single-hero__img {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .single-hero__img {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .single-hero__cta {
    margin-bottom: 20px;
  }
}
.single-hero__cta-btn {
  text-align: center;
  margin-top: 35px;
}
@media (min-width: 992px) {
  .single-hero__cta-btn {
    margin-top: 4.5rem;
  }
}

.vpn-box {
  box-shadow: 0px 3px 8px -2px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: white;
  padding: 20px 25px;
  text-align: center;
  margin-top: 25px;
  display: inline-block;
  min-width: 215px;
}
@media (min-width: 768px) {
  .vpn-box {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .vpn-box {
    padding: 22px 30px;
  }
}
@media (min-width: 1200px) {
  .vpn-box {
    min-width: 260px;
  }
}
.vpn-box__logo {
  margin-bottom: 20px;
  margin-top: 16px;
  max-width: 200px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vpn-box__logo img {
  max-height: 100%;
}
.vpn-box__sticky {
  display: none;
}
@media (min-width: 768px) {
  .vpn-box__sticky {
    display: block;
    margin-top: 28px;
  }
}

.single-thumbnail {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .single-thumbnail {
    margin-bottom: 60px;
  }
}
.single-thumbnail img {
  width: 100%;
}

@media (min-width: 768px) {
  .sticky-element {
    position: sticky;
    top: 20px;
  }
}

.not-found {
  padding: 60px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .not-found {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .not-found {
    padding: 130px 0;
  }
}
.not-found__img {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .not-found__img {
    width: 48%;
    margin: 0 40px 0 0;
  }
}
@media (min-width: 768px) {
  .not-found .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}
.not-found h1 {
  max-width: 443px;
  margin: 0 auto 25px auto;
  text-align: center;
}
@media (min-width: 768px) {
  .not-found h1 {
    text-align: left;
  }
}
.not-found__btns {
  text-align: center;
  max-width: 430px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .not-found__btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.not-found__btns span {
  margin: 10px;
  display: block;
  font-size: 16px;
}

.no-results__form .search-form {
  margin: 0 auto;
}

.error404 footer {
  display: none;
}

.search-page__title {
  padding: 30px 0;
  max-width: 880px;
  margin: 0 auto 20px auto;
}
@media (min-width: 992px) {
  .search-page__title {
    padding: 70px 0 40px 0;
  }
}

.contact {
  overflow: hidden;
  margin-bottom: -20px;
}
@media (min-width: 992px) {
  .contact {
    margin-bottom: -4rem;
  }
}
@media (min-width: 768px) {
  .contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.contact__left {
  padding: 40px 0 50px 0;
  max-width: 560px;
}
@media (min-width: 768px) {
  .contact__left {
    padding: 7rem 2rem 12rem 0;
  }
}
@media (min-width: 992px) {
  .contact__left {
    padding: 8rem 4rem 17rem 0;
  }
}
@media (min-width: 1200px) {
  .contact__left {
    padding-right: 5rem;
  }
}
.contact__right {
  padding: 45px 0 65px 0;
  position: relative;
  z-index: -1;
}
.contact__right:after {
  content: "";
  background-color: #EDF9FC;
  position: absolute;
  height: 100%;
  width: 4000px;
  left: -20px;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .contact__right:after {
    left: 100%;
  }
}
@media (min-width: 768px) {
  .contact__right {
    padding: 14rem 0 0 2rem;
    background-color: #EDF9FC;
  }
}
@media (min-width: 992px) {
  .contact__right {
    padding: 14rem 3rem 0 4rem;
  }
}
@media (min-width: 1200px) {
  .contact__right {
    padding: 16rem 4rem 0 7rem;
  }
}
.contact__text h2,
.contact__text h3 {
  color: #073770;
}
.contact__text p {
  color: #314966;
}
.contact__form {
  margin-top: 38px;
}
@media (min-width: 992px) {
  .contact__form {
    margin-top: 55px;
  }
}
.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=url],
.contact__form textarea {
  padding: 10px 15px;
  width: 100%;
  background-color: transparent;
}
.contact__form button,
.contact__form input[type=button],
.contact__form input[type=reset],
.contact__form input[type=submit] {
  color: white;
  background: #3E3AE9;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 14px 10px;
}
.contact__form button:hover,
.contact__form input[type=button]:hover,
.contact__form input[type=reset]:hover,
.contact__form input[type=submit]:hover {
  opacity: 0.8;
}
.contact .form-group {
  margin-bottom: 24px;
  position: relative;
}
@media (min-width: 992px) {
  .contact .form-group {
    margin-bottom: 34px;
  }
}
.contact .form-group.label-anima .form-label {
  top: -13px;
  left: 10px;
  font-size: 14px;
  padding: 0 5px;
  z-index: 1;
}
.contact .form-group.form-group__message {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .contact .form-group.form-group__message {
    margin-bottom: 20px;
  }
}
.contact .form-label {
  position: absolute;
  top: 11px;
  left: 15px;
  font-size: 16px;
  line-height: 24px;
  background-color: white;
  transition: all 0.3s ease;
  color: #595959;
}
.contact .form-btn {
  position: relative;
  display: inline-block;
}
.contact .btn {
  min-width: 120px;
}

.wpcf7-spinner {
  position: absolute;
  right: 10px;
  top: 13px;
  width: 20px;
  height: 20px;
  margin: 0;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-bottom: -13px;
}
.form-group__message .wpcf7-not-valid-tip {
  margin-top: -7px;
}

.wpcf7-response-output {
  font-size: 14px;
  padding: 0.2em 0.7em;
}

.wpcf7-form-control-wrap.recaptcha {
  display: block;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .wpcf7-form-control-wrap.recaptcha {
    margin-bottom: 34px;
  }
}

.default-page {
  padding: 45px 0;
}
@media (min-width: 992px) {
  .default-page {
    padding: 90px 0;
  }
}
.default-page .entry-header {
  margin-bottom: 4rem;
}

.single-post__hero {
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .single-post__hero {
    padding: 7.5rem 0;
  }
}
.single-post .single-hero__info {
  margin-bottom: 3rem;
}
.single-post__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .single-post__title {
    margin-bottom: 3rem;
  }
}
.single-post--has-thumbnail {
  margin-bottom: 9rem;
}
@media (min-width: 992px) {
  .single-post--has-thumbnail {
    margin-bottom: 30rem;
  }
}
.single-post--has-thumbnail .single-post__thumbnail {
  margin-top: 30px;
}
.single-post__thumbnail {
  margin-bottom: -11rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 55%;
}
.single-post__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .single-post__thumbnail {
    margin-bottom: -34rem;
  }
}

.hero-single {
  background-color: #f5f5f5;
  padding: 40px 0 30px 0;
}
@media (min-width: 992px) {
  .hero-single {
    padding: 55px 0 40px 0;
  }
}
.hero-single h1 {
  color: #215a7a;
  line-height: 1.3;
  margin-bottom: 30px;
}
.hero-single h1 {
  font-size: 44px;
}
@media screen and (min-width: 320px) {
  .hero-single h1 {
    font-size: calc(44px + 18 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .hero-single h1 {
    font-size: 62px;
  }
}
@media (min-width: 992px) {
  .hero-single h1 {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .hero-single__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.hero-single__info .last-updated {
  font-size: 16px;
  font-weight: 400;
}
.hero-single__notice {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(74, 74, 74, 0.6);
}
@media (min-width: 992px) {
  .hero-single__notice {
    margin-top: 2rem;
  }
}

.author-box {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .author-box {
    margin-bottom: 0;
    margin-right: 5rem;
  }
}
.author-box .author-img {
  margin-right: 13px;
  flex-shrink: 0;
  display: flex;
}
.author-box .author-img img {
  border-radius: 50%;
  width: 34px;
  height: 34px;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-box .author-info h6 {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transition: 0.25s ease;
  font-family: "Lato", sans-serif;
}

a.author-box h6 {
  color: #3E3AE9;
}
a.author-box:hover h6 {
  opacity: 0.8;
}

.contributor {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .contributor {
    margin-bottom: 0;
    margin-right: 40px;
  }
}
.contributor__img {
  margin-right: 13px;
  flex-shrink: 0;
}
.contributor__img img {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contributor__name {
  display: flex;
  align-items: center;
}
.contributor__name span {
  display: block;
}
.contributor__name h4 {
  margin: 0;
  color: #215a7a;
  font-size: 18px;
  font-weight: 700;
}

.reviewed-tag {
  color: #363636;
  display: inline-block;
  margin-right: 9px;
  margin-left: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 0 4px 4px 0;
  border: 1px solid #215a7a;
  border-left: 0;
  padding: 2px 6px 3px 7px;
  position: relative;
  font-size: 14px;
  line-height: 1;
}
.reviewed-tag:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 4px;
  left: -15px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}
.reviewed-tag:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -25px;
  width: 25px;
  height: 25px;
  background-color: #215a7a;
  border-radius: 50%;
}

.single-best__hero {
  padding: 4rem 0 4rem;
}
@media (min-width: 992px) {
  .single-best__hero {
    padding: 5rem 0 7.5rem 0;
  }
}
.single-best__title {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .single-best__title {
    margin-bottom: 1.5rem;
  }
}
.single-best .top3 {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .single-best .top3 {
    margin-top: 6rem;
  }
}

.single-country__hero {
  padding: 4rem 0 5rem 0;
}
@media (min-width: 992px) {
  .single-country__hero {
    padding: 5.5rem 0 7.5rem 0;
  }
}
.single-country__hero .single-hero__info {
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .single-country__hero .single-hero__info {
    margin-bottom: 3rem;
  }
}
.single-country__title {
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .single-country__title {
    margin-bottom: 20px;
  }
}
.single-country__intro {
  margin-top: 14px;
}
@media (min-width: 992px) {
  .single-country__intro {
    margin-top: 1.5rem;
  }
}
.single-country__intro-text--mb {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .single-country__intro-text--mb {
    margin-bottom: 60px;
  }
}
.single-country__intro-text--mt {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .single-country__intro-text--mt {
    margin-top: 60px;
  }
}

.press-hero h1 {
  margin-bottom: 3rem;
}
.press-hero__content {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 992px) {
  .press-hero {
    padding-bottom: 100px;
  }
}

.news-coverage h2,
.our-research h2 {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .news-coverage h2,
  .our-research h2 {
    margin-bottom: 8.4rem;
  }
}

.news-coverage {
  padding: 40px 0;
}
@media (min-width: 992px) {
  .news-coverage {
    padding: 7rem 0;
  }
}
.news-coverage__card {
  box-shadow: 0px 4px 10px -2px rgba(40, 38, 56, 0.15);
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
@media (min-width: 992px) {
  .news-coverage__card {
    padding: 2.5rem 2.5rem 3rem 2.5rem;
  }
}
.news-coverage__card .card-img {
  display: flex;
  align-items: center;
  height: 70px;
  margin-bottom: 25px;
  max-width: 80%;
}
@media (min-width: 992px) {
  .news-coverage__card .card-img {
    height: 100px;
    max-width: 60%;
  }
}
.news-coverage__card .card-img img {
  max-height: 100%;
}
.news-coverage__card .card-title {
  transition: 0.3s ease;
}
.news-coverage__card .card-title {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .news-coverage__card .card-title {
    font-size: calc(26px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .news-coverage__card .card-title {
    font-size: 28px;
  }
}
.news-coverage__card .card-title {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .news-coverage__card .card-title {
    line-height: calc(30px + 8 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .news-coverage__card .card-title {
    line-height: 38px;
  }
}
.news-coverage__card a:hover h3 {
  color: #3d8aff;
}
.news-coverage__card .card-text {
  margin-bottom: 15px;
}
.news-coverage__card .card-text p:last-of-type {
  margin-bottom: 0;
}
.news-coverage__card .card-read-more {
  margin-top: auto;
  color: #3d8aff;
  font-weight: 600;
  display: inline-block;
}
.news-coverage__card .card-read-more {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .news-coverage__card .card-read-more {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .news-coverage__card .card-read-more {
    font-size: 18px;
  }
}
.news-coverage__card .card-read-more svg {
  margin-left: 4px;
  transition: 0.25s ease-in-out;
}
.news-coverage__card .card-read-more:hover svg {
  margin-left: 7px;
}

.our-research {
  padding: 30px 0 40px 0;
}
@media (min-width: 992px) {
  .our-research {
    padding: 4rem 0 20rem 0;
  }
}
.our-research .color-card {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
@media (min-width: 992px) {
  .our-research .color-card {
    padding: 3.3rem 2.3rem;
  }
}
.our-research .color-card-title {
  transition: 0.25s ease;
  margin-bottom: 3rem;
}
.our-research .color-card-title {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .our-research .color-card-title {
    font-size: calc(26px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .our-research .color-card-title {
    font-size: 28px;
  }
}
.our-research .color-card-title {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .our-research .color-card-title {
    line-height: calc(30px + 8 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .our-research .color-card-title {
    line-height: 38px;
  }
}
.our-research .color-card-text {
  margin-bottom: 2.2rem;
}
.our-research .color-card-btn {
  margin-top: auto;
  color: #3d8aff;
  font-weight: 600;
  display: inline-block;
}
.our-research .color-card-btn {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .our-research .color-card-btn {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media screen and (min-width: 1440px) {
  .our-research .color-card-btn {
    font-size: 18px;
  }
}
.our-research .color-card-btn svg {
  margin-left: 4px;
  transition: 0.25s ease-in-out;
}
.our-research .color-card-btn:hover svg {
  margin-left: 7px;
}
.our-research .color-card__lightblue .color-card-title {
  color: #313D6C;
}
.our-research .color-card__darkblue .color-card-title {
  color: white;
}
.our-research .color-card__darkblue .color-card-text {
  color: white;
}
.our-research .color-card__darkblue .color-card-btn {
  color: white;
}
.our-research .color-card__darkblue .color-card-btn path {
  fill: white;
}